home *** CD-ROM | disk | FTP | other *** search
- on startMovie
- global gKnobSprite, gSendMovie, gKnobState, qtChan
- puppetSprite(48, 1)
- qtChan = 11
- sprite(qtChan).volume = 256
- preLoad(qtChan - 1)
- set the mouseDownScript to EMPTY
- set the mouseUpScript to EMPTY
- sprite(18).visible = 0
- sprite(19).visible = 0
- gKnobSprite = 14
- gSendMovie = "07d"
- gKnobState = 1
- puppetSprite(gKnobSprite, 1)
- setUpKnob()
- end
-
- on idle
- global gCursorReady
- if gCursorReady = 1 then
- cursor(200)
- checkCursors()
- set the locH of sprite 48 to the mouseH
- set the locV of sprite 48 to the mouseV
- updateStage()
- end if
- end
-
- on checkCursors
- global gMagCursor
- set the castNum of sprite 48 to the number of member "curs1"
- repeat with i = 5 to 9
- if rollOver(i) then
- set the castNum of sprite 48 to the number of member "hotCursor"
- end if
- end repeat
- if rollOver(10) then
- set the castNum of sprite 48 to the number of member "curs1"
- end if
- repeat with i = 15 to 17
- if rollOver(i) then
- set the castNum of sprite 48 to the number of member "hotCursor"
- end if
- end repeat
- if rollOver(29) or rollOver(30) then
- set the castNum of sprite 48 to the number of member "hotCursor"
- end if
- repeat with i = 32 to 34
- if rollOver(i) then
- set the castNum of sprite 48 to the number of member "hotCursor"
- end if
- end repeat
- if rollOver(35) then
- set the castNum of sprite 48 to the number of member "linkCurs"
- end if
- repeat with i = 40 to 42
- if rollOver(i) then
- set the castNum of sprite 48 to the number of member "hotCursor"
- end if
- end repeat
- if the castNum of sprite 45 and rollOver(45) then
- set the castNum of sprite 48 to the number of member "magcursor"
- end if
- if the castNum of sprite 46 and rollOver(46) then
- set the castNum of sprite 48 to the number of member "demagcursor"
- end if
- end
-